home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr09 / fgrtodb.zip / PAF.SED < prev    next >
Text File  |  1993-06-03  |  1KB  |  34 lines

  1. /^-/ d                  # delete all lines that begin with a "-"
  2. /^ [A-Z]/ d             # delete all lines that begin with a space+alpha
  3. s/-/:/g                 # substitute all remaining "-" with a ":"
  4. /^=/ d                  # delete all lines that begin with a "="
  5. /NAME/ d                # delete all lines that have NAME
  6. /^      MA/ d           # delete all lines that begin with blank+MA
  7. /^      DI/ d           # delete all lines that begin with blank+DI
  8. /Page/ d                # delete all lines that have the word "Page"
  9. /Sex/ d                 # delete all lines that have the word "Sex"
  10. /Yr of Birth/ d         # delete all lines that have "Yr of Birth"
  11. /CHR./ d                # delete all lines that have "CHR."
  12. /BUR./ d                # delete all lines that have "BUR."
  13. /OTHER H/ d             # delete all lines that have "OTHER H"
  14. /OTHER W/ d             # delete all lines that have "OTHER W"
  15. s/HUSBAND /HUSBAND:/    # place a colon after HUSBAND
  16. s/PLACE/:PLACE/         # place a colon before PLACE
  17. s/MOTHER/:MOTHER/       # place a colon before MOTHER
  18. s/WIFE /WIFE:/          # place a colon after WIFE
  19. s/PARENTS/:PARENTS/     # place a colon before PARENTS
  20. s/    / /g              # remove excess spaces
  21. s/   / /g
  22. s/  / /g
  23. s/: /:/g                # remove spaces before/after colons
  24. s/  :/:/g 
  25. s/ :/:/g 
  26. s/^   F/F/
  27. /^ / d
  28. /Name and/ d            # delete name and address of submitter
  29. /Stephen Valentine, IV/ d
  30. /8313/ d
  31. /Alexandria,/ d
  32.  
  33.  
  34.